200 |
Can you add text with links in the event
// AnchorClick event - Occurs when an anchor element is clicked. void OnAnchorClickSchedule1(LPCTSTR AnchorID,LPCTSTR Options) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"AnchorID" ); OutputDebugStringW( L"Options" ); } EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,20,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,20,9,00,00).operator DATE(),COleDateTime(2012,6,20,11,00,00).operator DATE())->PutExtraLabel(L"<aID1234;OPTIONS-1234>click me</a>"); var_Events->Add(COleDateTime(2012,6,20,11,00,00).operator DATE(),COleDateTime(2012,6,20,13,00,00).operator DATE())->PutExtraLabel(L"<a1235;OPTIONS-1235>click me</a>"); |
199 |
How do you adjust the font type and size of the event (method 2)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,20,0,00,00).operator DATE()); spSchedule1->PutDefaultEventShortLabel(L"<font mistral;12><%=%256%>"); spSchedule1->PutDefaultEventLongLabel(spSchedule1->GetDefaultEventShortLabel()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,20,9,00,00).operator DATE(),COleDateTime(2012,6,20,11,00,00).operator DATE()); var_Events->Add(COleDateTime(2012,6,20,11,00,00).operator DATE(),COleDateTime(2012,6,20,13,00,00).operator DATE()); |
198 |
How do you adjust the font type and size of the event (method 1)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,20,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); EXSCHEDULELib::IEventPtr var_Event = var_Events->Add(COleDateTime(2012,6,20,9,00,00).operator DATE(),COleDateTime(2012,6,20,11,00,00).operator DATE()); var_Event->PutShortLabel(L"<font tahoma;12><%=%256%>"); var_Event->PutLongLabel(var_Event->GetShortLabel()); EXSCHEDULELib::IEventPtr var_Event1 = var_Events->Add(COleDateTime(2012,6,20,11,00,00).operator DATE(),COleDateTime(2012,6,20,13,00,00).operator DATE()); var_Event1->PutShortLabel(L"<fgcolor FF><i><font Mistral;16>your caption</i></font> goes here"); var_Event1->PutLongLabel(var_Event1->GetShortLabel()); |
197 |
How can I change the shape of the line to be shown when user drag and drop data over the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutOLEDropMode(EXSCHEDULELib::exOLEDropManual); spSchedule1->GetVisualAppearance()->Add(1,"C:\\Program Files\\Exontrol\\ExSchedule\\Sample\\EBN\\dash1.ebn"); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleOLEDropPosition,0x1000000); |
196 |
How can I highlight the date-time from cursor when the user drag and drop data over the control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutOLEDropMode(EXSCHEDULELib::exOLEDropManual); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleOLEDropPosition,RGB(1,0,0)); |
195 |
How can I start drag and drop events
// OLEStartDrag event - Occurs when the OLEDrag method is called. void OnOLEStartDragSchedule1(LPDISPATCH Data,long FAR* AllowedEffects) { // Data.SetData("to be carried by drag and drop") /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); AllowedEffects = 1; } EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutAllowMoveEvent(EXSCHEDULELib::exDisallow); spSchedule1->PutAllowCreateEvent(EXSCHEDULELib::exDisallow); spSchedule1->PutOLEDropMode(EXSCHEDULELib::exOLEDropManual); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,27,11,00,00).operator DATE(),COleDateTime(2012,6,27,12,30,00).operator DATE())->PutBodyBackColor(RGB(255,0,0)); var_Events->Add(COleDateTime(2012,6,27,11,30,00).operator DATE(),COleDateTime(2012,6,27,13,30,00).operator DATE()); var_Events->Add(COleDateTime(2012,6,27,8,30,00).operator DATE(),COleDateTime(2012,6,27,11,45,00).operator DATE()); spSchedule1->EndUpdate(); |
194 |
Is it possible to show the today date with a different foreground color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(_bstr_t("month(value) = month(date(``)) and (int((yearday(value) -1- ((7-weekday(value - yearday(value) + 1)) mod 7) )/7) = int((yearday") + "(date(``))-1)/7))"); spSchedule1->PutBackground(EXSCHEDULELib::exCalendarMarkToday,spSchedule1->GetBackColor()); spSchedule1->PutBackground(EXSCHEDULELib::exCalendarMarkTodayForeColor,RGB(255,0,0)); |
193 |
How can I hide the rectangle around the today date
|
192 |
Is it possible to change the appearance of event with no status using the EBN (office theme)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->GetVisualAppearance()->Add(1,_bstr_t("gBFLBCJwBAEHhEJAEGg4BeoDg6AADACAxRDAMgBQKAAzQFAYaBqGqGAAGKD4JhUAIIRZGMIjFDcEwxC6NIpAWCYRDGEwCQiNQyRDCYYw+GYCJBmKKYcgONYgQLHcgxD") + "IsJw/FyERjjeB4egkaZHRZOUZTZQsBxRAZ2Q4EQAKRpOFY9DTPcr0HR8ZQ+BKNAYkSjQAp2VZUVJFUqDKItVzbBIaRgteA7RrOXpjRjYEBxDKcZyxLqVLToiqcRz7Pqb" + "ZrjeioZoyBI+QjgYAUFDeGSTDQ3bwAA4rEqaaZnVbkOQQJTcNy7EKvYRzGA7CgPHI5QjnVR6BjUJztWyIbp3G4rchqH4RaqAF5ZXg9ez/FIaJbnUaMWhXFqOABwPC0Xo" + "IGuAJklAeR6H2dAngcEZWnQehzCsd4SmGPJzF2Io1l2fhrgeUpxHOLIAggSRAlIYw6B0ThGFyEJ4CEAwQgSV51BkDYQhCIQJHgGp0gAGBFgCB55nAAC3HCbYEGEOBIHO" + "BZhggZgagYIRIHYEoFCGMoSCKCJiEiFgjgaYZjjYGIJiKSI2CeBZiAgXgugyYxIgYNINmIaJaDiDpKEiag8g2Y5on4M4GkqGQWEaEZkgkJhKhEZBJC4ToTmSSBqFCFJk" + "ikNhUhXQpaFiFJlikbhPhcZZpC4GwqmYSYWGaGZmgmJhkhiZopjYboamGKY+HKGhmkmTh2CqZxZl4coeGeKY6HyHxmigbIuiCaBKBaBohmiCgOgKIhokoNoKgaKJqEaC" + "IimkwwuiUKVyBiJk7m6HIiGGMqbCiSwqhaI4pmqComiOKBqiqNouioKpKj6JQsiqapOiuBoqnqZouiwaxahqOooiuSp+j+BpLEsFpGjGbILCaSoxGwSwuk6M5skgapQj" + "SbIrDaVI15AWpYjSbYrG6T43G2a1Ui2bhLhaZo5m6C4mmSOJuiuNpujqYYrj6co6G6S5OnYLZvFuXpyj4b4rjqfI/G7aA7kCcBMBcBpBnCDAPAKQhwkwN1wjCbBHAiQp" + "xCwVI7kVlJHBiRhwlwbzrHGbB/AeBpLlyFI/kmcoMiMJQvHKLIbCeSpyjyEwwkycxMk8LZMDMLIzC+S4LnyVw+kwYYsn8P5KHOPJoj+TnQl8NJSjMPJnEzmR9CMQpUnO" + "SBvESVZ1g0ZwplWNYtHcXZXDWbYHESWA2C2Fxklkdgdh8aJXmGLYvGaBoME2RxylydxNlcdpcGGPZfHqXp3C2M4fIv3sD3ACMETAnALgJF+PAbgPh7jEHiFsXgNgxjyA" + "4I8EoyR5CcFeCEY48huDPBqMsYYXBvg9GUPMDg/wiBjHoD0D4PRpD0G4NdcY8hoDZEqNcewHRHhlGyPYTofwujaHuB0Z4bQGh3C6O9ng9xvAJEqA0TIfgXiNHGPkDznx" + "xD4E8F8To5x8iQGuKEdI+QvBvFSOuKotxYjpGGGYN4vR3j8A+A8Yo8R9jeHeMkeY/QPgsBoGcPonw3jdHuP4D4jxsgNH8F8V47R7D+E+L8eo+A/g/G+PwGYnx1j/D+FA" + "AwAQfhoASAEL4lADiBAePEeowBcANAGGAOgCQhhDCMAoIIWAWgFHAMQDIghEBuAaEEbAPQChgHIB8QgUAxAQGEDgJgNAwgsBOIQJAbUpCoBoIoCAtAJiFGgMEBQwwqBj" + "AWCEYAcwigoCgIAQBAQ=="); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exChangePanels | EXSCHEDULELib::exHideSplitter)); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); spSchedule1->PutBodyEventBackColor(0x1000000); spSchedule1->PutShowStatusEvent(VARIANT_FALSE); spSchedule1->PutDefaultEventPadding(EXSCHEDULELib::exPaddingAll,3); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleCreateEventBackColor,0x1000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleUpdateEventsBackColor,0x1000000); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,27,11,00,00).operator DATE(),COleDateTime(2012,6,27,12,30,00).operator DATE())->PutBodyBackColor(RGB(255,0,0)); var_Events->Add(COleDateTime(2012,6,27,11,30,00).operator DATE(),COleDateTime(2012,6,27,13,30,00).operator DATE())->PutBodyBackColor(RGB(0,255,0)); spSchedule1->EndUpdate(); |
191 |
Is it possible to change the appearance of event's status using the EBN (office theme)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exChangePanels | EXSCHEDULELib::exHideSplitter)); EXSCHEDULELib::IAppearancePtr var_Appearance = spSchedule1->GetVisualAppearance(); var_Appearance->Add(1,_bstr_t("gBFLBCJwBAEHhEJAEGg4BKYCg6AADACAxRDAMgBQKAAzQFAYaBqGqGAAGKD4JhUAIIRZGMIjFDcEwxC6NIpAWCYRDEMQ0AJCIzDJCIZBkHCPRjASQZUhmHIDTbIEBxf") + "IMIxLE9IMwxfA8ax1GifI6hGSYDa0HAkABTVQRLL4aSDK6NaYmSL5DhkBokUpGKTpOhgATHMqqIzGURZNquEQ1DBbEI3BaUaw/CKRLAoahqVpqK4tS7MNa3XKkcxzD6e" + "IypGBKAgmQoJDLRGIxTiYACxPQACzsEAKapKUZPRZVNYQJQlNRDLiEcrgOr4DxqO4aWbZViaDZVawlNy5bhtfaqGrfKYJYLrWCTbh0Tz9KzIJJwHbcKxjKrDczjEoSVw" + "iAmSgcGmIxaggHBHFmFpoHEJwbg8FpammO5bEUaxbm6ZwDH+YI7EIQQQhKAYkkYdA6hyDI4ngGRIA8AwQgSV51BkDYQhCIQJHeHAkCAGBFgGR55m8CQBkONkYCEEgxGe" + "BZJHQDgTgWFhFgyf4HmICByBqBRhmiAgmD+YggAIHIJmKSIhGMQJijiNgmgoYwYkoH4NCIWJaC6BhiiiZg2g4CR4moN4LmOWQGEKEAkCibgwg+vwiEeEQjFifhQhMIpZ" + "DoOoViUKJyFGExlDkGhXhcZIZGIXIWiUSIyGKFRmAkPhkheJYZC4bIYmaaYGGmF5mjmSh1hqJwZmIRYdieGZSH2GxnjmahbhoJx5nqAYhigOYaHOIAohiHhniKKBaDIZ" + "YjiiOZCgeJImnoEh/iWKJYk6FYmikehyhOJ4pBqCoZiQKY6gKHYIGmeoiiGKoqDqMoliwKh6FKM4riqOQOjeLYqhqYoxi6K5anKL4visWoSkGMYsDsCo5hKLIbCKS4jm" + "yKp+kyM5qlsRpFiyLB7GKTY2i0Spuk6NItAsfpXjALY7hKXYIk6Wh2CmBphgqOgTjuYhIHachAlAECAg="); var_Appearance->Add(2,"CP:1 0 0 1 0"); var_Appearance->Add(4,_bstr_t("gBFLBCJwBAEHhEJAEGg4BGoDg6AADACAxRDAMgBQKAAzQFAYaBqGqGAAGKD4JhUAIIRZGMIjFDcEwxC6NIpASLoJDCH4mSTHYxyHIMWwtDiBZgkCA4fiGEYnThKM5Sd") + "KsXABG6NErSdDAAoKRIVTjAcsVTicAo+R7TcYgLBNAQHKQAHZDQRKZpuFoRRKJNgDLYUEhqGCyYDseyZNj2GZYRDPVqzWAFFzrFSqLilaYpSh+bpfSRSVI3PakQz+LCN" + "CzwEAKYoaRZDRZgdzUbItMYNBKsMQgO6QAwqNKYQjWVaaFgEYzJMa2LTiHSqQhrGqMQjnV5ZPgVzZKZZGVQ1LBOOZfEJ2XacSqeCyWEqnRryFpWRpfGXiX7EOY7HaePw" + "DAQQhKAaEwZlCahyDKDBjm4a5JAiG5jgyDYhCKDZukYSAYgsLAzh0RBlBqBAkA4Ox+n+H5AAGDJWDWH5jFmdBQl8Z5yAGAZfngDZ6H9HIiACAhUCgMgPgSYAYA4EoDiE" + "WBGBiAxhAIXAADITRzGIIA2AyAxYleCJhGiFgnggYg4iIEYImKKIqC6B4iliMg2DYIRolYIoLA2ExmDmDwNhiNg9g+Y44goPYMmGeJeEKD4hBMMJbDaTIYnYTg2mUOBa" + "FOFZknkVhNhYZZJFIT4ViWWRElmFohmkYhehQJA4ESTg3A2WYuG2GwmmgWhuhyZwJjIcodGaeZmGANpnEMdhkAAJ5ZE4cYaieCZ2HeHhoGoEoIh4IRjESXg3iialFiQa" + "JaE6Fokg2ahWhiJBpEgRociWaZYHqH4mmiehqiOKBAAqDJUDgTgaiyYYFiqapGiyK4rAqTosiQa14jKKxrGqPo6i8a46laPIwmuGB6juMBrnsEo9jCLB6jKTIwCyawmk" + "2L4sGsQpDjObIrFAAA2E4U4WlyN4tlsfgWjebhLgaXY4waApqjoLorhSZY7C6a4KBGPBuhuQppjyIZrlKa48m8e5WBENwOHOIyNDAHAOBaQJwgwFwBgWDZziSaZCHAQ4" + "jAeQoxBwGp/kUMQME8FZFDGLBDBaB4xmwcwXkacQcDMDpDE6HIjCiSYyhyHwuDocpMisL5MHKfIuBGTIylyZgWDgToziyYg7A6TJ8myTwO7KPZRDQLQTEYOp0g0AxKgQ" + "dBNDcQ5PHSPRHEeVQ1A0XxMlaNRdGsT4Hg4Q44m2WB2D2CxkgWNhNicZpYjaDYvGWW52l2PxqDsdz+meBBOGOIEcAdAPAnEcPIPAbx4C2H+MEd4XAHDxGEPEDgBh6jBD" + "iDwEI4QFhvEOI8EYyR3i8EMPsZQcguCsBGMwOQMApj5GYEAPg8RtAADoDAFY9xpiAAQAggIA="); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); spSchedule1->PutStatusEventColor(0x2000000); spSchedule1->PutBodyEventBackColor(0x4000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleCreateEventBackColor,0x1000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleUpdateEventsBackColor,0x1000000); spSchedule1->PutStatusEventSize(6); spSchedule1->PutDefaultEventPadding(EXSCHEDULELib::exPaddingAll,2); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,27,11,00,00).operator DATE(),COleDateTime(2012,6,27,12,30,00).operator DATE())->PutBodyBackColor(RGB(255,0,0)); EXSCHEDULELib::IEventPtr var_Event = var_Events->Add(COleDateTime(2012,6,27,11,30,00).operator DATE(),COleDateTime(2012,6,27,13,30,00).operator DATE()); var_Event->PutBodyBackColor(RGB(0,255,0)); var_Event->PutStatusColor(RGB(0,0,128)); var_Event->PutExtraLabel(L"Point"); EXSCHEDULELib::IEventPtr var_Event1 = var_Events->Add(COleDateTime(2012,6,27,8,30,00).operator DATE(),COleDateTime(2012,6,27,11,45,00).operator DATE()); var_Event1->PutStatusColor(RGB(255,0,255)); spSchedule1->EndUpdate(); |
190 |
Does your control support subscript or superscript, in HTML captions
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutBodyEventBackColor(RGB(240,240,240)); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,20,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,20,9,00,00).operator DATE(),COleDateTime(2012,6,20,11,00,00).operator DATE())->PutExtraLabel(L"<sha ;;0>Event <b><font ;6><off 4>1"); var_Events->Add(COleDateTime(2012,6,20,11,00,00).operator DATE(),COleDateTime(2012,6,20,13,00,00).operator DATE())->PutExtraLabel(L"<sha ;;0>Event <b><font ;6><off 4>2"); var_Events->Add(COleDateTime(2012,6,20,13,00,00).operator DATE(),COleDateTime(2012,6,20,15,00,00).operator DATE())->PutExtraLabel(L"<sha ;;0>Event <b><font ;6><off -6>2<off 4>3<off 4>1"); |
189 |
How can I hide the scheduler part of the control, so I can use the calendar panel only
|
188 |
I see how I can specify a non-working day pattern for weekends, but how can I specify non-working days for holidays
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelectDate(COleDateTime(2012,5,28,0,00,00).operator DATE(),VARIANT_TRUE); var_Calendar->Select(EXSCHEDULELib::exSelectWeek); var_Calendar->PutSelectDate(COleDateTime(2012,6,5,0,00,00).operator DATE(),VARIANT_FALSE); var_Calendar->Select(EXSCHEDULELib::SelectCalendarDateEnum(EXSCHEDULELib::exSelectToggle | EXSCHEDULELib::exSelectWeek)); var_Calendar->PutSelectDate(COleDateTime(2012,6,12,0,00,00).operator DATE(),VARIANT_FALSE); var_Calendar->Select(EXSCHEDULELib::SelectCalendarDateEnum(EXSCHEDULELib::exSelectToggle | EXSCHEDULELib::exSelectWeek)); EXSCHEDULELib::INonworkingTimesPtr var_NonworkingTimes = spSchedule1->GetNonworkingTimes(); var_NonworkingTimes->Add(L"month(value) = 5",L"00:00",L"24:00",-1); var_NonworkingTimes->Add(L"value in (#6/5/2012#,#6/7/2012#)",L"00:00",L"24:00",-1); |
187 |
How do I enable the scrollbar-extension, as thumb to be shown outside of the control's client area
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutScrollBars(EXSCHEDULELib::exDisableBoth); spSchedule1->PutScrollPartVisible(EXSCHEDULELib::exVScroll,EXSCHEDULELib::exExtentThumbPart,VARIANT_TRUE); spSchedule1->PutScrollPartVisible(EXSCHEDULELib::exHScroll,EXSCHEDULELib::exExtentThumbPart,VARIANT_TRUE); spSchedule1->PutScrollPartVisible(EXSCHEDULELib::ScrollBarEnum(0x2),EXSCHEDULELib::exExtentThumbPart,VARIANT_TRUE); spSchedule1->PutScrollWidth(4); spSchedule1->PutBackground(EXSCHEDULELib::exVSBack,RGB(240,240,240)); spSchedule1->PutBackground(EXSCHEDULELib::exVSThumb,RGB(128,128,128)); spSchedule1->PutScrollHeight(4); spSchedule1->PutBackground(EXSCHEDULELib::exHSBack,spSchedule1->GetBackground(EXSCHEDULELib::exVSBack)); spSchedule1->PutBackground(EXSCHEDULELib::exHSThumb,spSchedule1->GetBackground(EXSCHEDULELib::exVSThumb)); spSchedule1->PutBackground(EXSCHEDULELib::exScrollSizeGrip,spSchedule1->GetBackground(EXSCHEDULELib::exVSBack)); spSchedule1->EndUpdate(); |
186 |
How can I show contiguously the days, in a single row
|
185 |
How can I show contiguously the days
|
184 |
How can I display the time in european format with no usage of AM/PM
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ITimeScalePtr var_TimeScale = spSchedule1->GetTimeScales()->GetItem(long(0)); var_TimeScale->PutMajorTimeLabel(L"<%hh%>:<%nn%>"); var_TimeScale->PutWidth(32); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2001,6,11,0,00,00).operator DATE()); var_Calendar->PutShortTimeFormat(L"<%h%>:<%nn%>"); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,6,11,10,00,00).operator DATE(),COleDateTime(2001,6,11,13,15,00).operator DATE()); var_Events->Add(COleDateTime(2001,6,11,10,30,00).operator DATE(),COleDateTime(2001,6,11,14,30,00).operator DATE()); |
183 |
Is it possible to zoom the schedule component using a key and scrolling the wheel (not pressing it and moving the mouse)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutAllowResizeSchedule(EXSCHEDULELib::AllowKeysEnum(EXSCHEDULELib::exCTRLKey | EXSCHEDULELib::exMiddleClick)); spSchedule1->PutAllowMoveSchedule(EXSCHEDULELib::exMiddleClick); |
182 |
How can I change the format of the date being displayed in the calendar panel
|
181 |
How can I display the Year in Thai, Buddhist, Korean format
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutFirstWeekDay(var_Calendar->GetLocFirstWeekDay()); var_Calendar->PutMonthNames(var_Calendar->GetLocMonthNames()); var_Calendar->PutWeekDays(var_Calendar->GetLocWeekDays()); var_Calendar->PutAMPM(var_Calendar->GetLocAMPM()); var_Calendar->PutHeaderDayLabel(L"<%mmmm%> <fgcolor=FF0000><%loc_yyyy%>"); spSchedule1->PutHeaderDayLongLabel(_bstr_t("<|><%dddd%>, <%mmmm%> <%d%>, <fgcolor=FF0000><%loc_yyyy%><|><%dddd%>,<%mmmm%> <%d%>,<fgcolor=FF0000><%loc_yyyy%><|><%dddd%>, <%") + "mmmm%> <%d%>,`<fgcolor=FF0000><%loc_yy%><|><%dddd%>, <%mmmm%> <%d%><|><%dddd%>, <%m3%> <%d%><|><%dddd%>, <%d%><|><%dddd%><|><%d3" + "%><|><%d2%><|><%d1%>"); |
180 |
May I specify a fixed width for my dates, so user can not resize it
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exChangePanels | EXSCHEDULELib::exResizePanelRight)); spSchedule1->PutAllowResizeSchedule(EXSCHEDULELib::exDisallow); spSchedule1->PutAllowMoveSchedule(EXSCHEDULELib::exMiddleClick); spSchedule1->PutShowViewCompact(EXSCHEDULELib::exViewCalendarCompact); spSchedule1->PutDayViewWidth(96); spSchedule1->PutDayViewHeight(256); spSchedule1->EndUpdate(); |
179 |
How can I change the format of date being displayed on the header
|
178 |
Is there any notifications for exchanging the panels at runtime
|
177 |
How can I handle the All-Day events only
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit)); spSchedule1->PutShowAllDayHeader(VARIANT_TRUE); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelectDate(COleDateTime(2012,5,8,0,00,00).operator DATE(),VARIANT_TRUE); var_Calendar->Select(EXSCHEDULELib::exSelectWeek); var_Calendar->PutSelectDate(COleDateTime(2012,5,15,0,00,00).operator DATE(),VARIANT_FALSE); var_Calendar->Select(EXSCHEDULELib::SelectCalendarDateEnum(EXSCHEDULELib::exSelectToggle | EXSCHEDULELib::exSelectWeek)); spSchedule1->GetTimeScales()->GetItem(long(0))->PutVisible(VARIANT_FALSE); spSchedule1->GetEvents()->Add(COleDateTime(2012,5,8,0,00,00).operator DATE(),COleDateTime(2012,5,17,0,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); spSchedule1->EndUpdate(); |
176 |
Is it possible to show the All-Day events with EBN including the next/prev signs (2)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit)); spSchedule1->PutShowAllDayHeader(VARIANT_TRUE); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelectDate(COleDateTime(2012,5,8,0,00,00).operator DATE(),VARIANT_TRUE); var_Calendar->Select(EXSCHEDULELib::exSelectWeek); var_Calendar->PutSelectDate(COleDateTime(2012,5,15,0,00,00).operator DATE(),VARIANT_FALSE); var_Calendar->Select(EXSCHEDULELib::SelectCalendarDateEnum(EXSCHEDULELib::exSelectToggle | EXSCHEDULELib::exSelectWeek)); spSchedule1->GetVisualAppearance()->Add(1,_bstr_t("gBFLBCJwBAEHhEJAEGg4BbkMQAAYAQGKIYBkAKBQAGaAoDDcOILQiMQzjTBMKgBBCLIxiGK4DhiF4aRSBMIwYAAYhyG4BIRGcYJEDMOQzR4MICSBKkMhlDiPY5mUAJE") + "iSJg3TDQlzpAoSGoeUhGTZnQaQASXJqKZ6kegoEh4MopTTHQLRUB8EyTDKnaapSJpEDINQlWTZciDKKFUQTNi3KxraKqbjqO47VJKEpSZBMXRhBIYZCueZZXgPBY5YhI" + "E64BSeASoACDZzoaAwTrOAwUZZFVg2DSOGSBRzQMKrCZKagnFYDVzleYxLjdR47Qy1Ih2GA7QqubYkUTmOjgBaoAYxQaaLx0OS5Rj4NAwZLFXI1eAGd6BDLhLz4XAOHx" + "HjmAZvGOWoeG8PhBiMGIMGOQxZCQOBpGUG4NncEIdB8MxLhSbpRnMIIIEkQJSGMOgdE4RhfAwJZtAwEIEleeQZA2EIQiECR2ludB8BgRYMAeKYDByB4DG5F4hBgTgWgU" + "YYIFIGoFmGOBlAmBJMmMQJwggYg4goJIJmIaImCWCpigiLgTgeYQYjYMoKiMOIyDSCIinQDggg2YxonYNYNGOEACDuD4jkifhFg4IQYkCW4RiQSQ2ECEhjiiRhHhOJQ4" + "jYQYQmSSRmFOFZlCkUhehMJZJC4VYYmWaYGFqF5ljkQhChcZh5jYKoZiYSY6D2HAmgmVhWhqJYJkYeoLieCYyHuHInEmSoAh8Zgplof4SA2OQqgKIZPAmBgciOYYaEIH" + "YkmQFAEIC"); spSchedule1->GetVisualAppearance()->Add(2,_bstr_t("gBFLBCJwBAEHhEJAEGg4BVMIQAAYAQGKIYBkAKBQAGaAoDDYMwzQwAAxjOK0EwsACEIrjKCRShyCYZRhGcTSBCIZBqEqSZLiEZRQiiCYsS5GQBSFDcOwHGyQYDkCQpE") + "hyKo+CTIAySXJsdw3IyNAIhEB4fgmM4DP7UIAVC78aRABCESgNEwzULUchlDDICJQSQRGzHDSKYDFCCaKgOTI6kgicpJUt6PBtaovKoWOZBcJ3Xjed6vBgeASpQbEL6w" + "DCbfrjB6KY5eeDXXSkAkB"); spSchedule1->GetVisualAppearance()->Add(3,_bstr_t("gBFLBCJwBAEHhEJAEGg4BVUIQAAYAQGKIYBkAKBQAGaAoDDYMwzQwAAxjOK0EwsACEIrjKCRShyCYZRhGcTSBCIZBqEqSZLiEZRQiiCYsS5GQBSFDcOwHGyQYDkCQpE") + "hyKo+CTIAySXJsZxpHKaAIhEB4fgmRgAP7UNQVFLkEgRBIoDRMM5DVLIZQxSAiUIkERtRQ1CqBRQhGioDoyOgABhFZSUPKlIztO45DwbO56RrlWzONA8FzXdgDYYLQjA" + "cJwXA7awrAZ8P7iGBZBbtdQCgIA=="); spSchedule1->PutBodyEventBackColor(0x1000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleEventContinueNextWeek,0x2000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleEventContinuePrevWeek,0x3000000); spSchedule1->PutHeaderAllDayEventHeight(-14); spSchedule1->GetEvents()->Add(COleDateTime(2012,5,8,0,00,00).operator DATE(),COleDateTime(2012,5,17,0,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); spSchedule1->EndUpdate(); |
175 |
How can I select programatically two weeks
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelectDate(COleDateTime(2012,5,8,0,00,00).operator DATE(),VARIANT_TRUE); var_Calendar->Select(EXSCHEDULELib::exSelectWeek); var_Calendar->PutSelectDate(COleDateTime(2012,5,15,0,00,00).operator DATE(),VARIANT_FALSE); var_Calendar->Select(EXSCHEDULELib::SelectCalendarDateEnum(EXSCHEDULELib::exSelectToggle | EXSCHEDULELib::exSelectWeek)); |
174 |
Is it possible to show the All-Day events with EBN including the next/prev signs (1)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutOnResizeControl(EXSCHEDULELib::exCalendarAutoHide); spSchedule1->PutShowAllDayHeader(VARIANT_TRUE); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutFirstWeekDay(EXSCHEDULELib::exMonday); var_Calendar->PutSelectDate(COleDateTime(2012,5,8,0,00,00).operator DATE(),VARIANT_TRUE); var_Calendar->Select(EXSCHEDULELib::exSelectWeek); var_Calendar->PutSelectDate(COleDateTime(2012,5,15,0,00,00).operator DATE(),VARIANT_FALSE); var_Calendar->Select(EXSCHEDULELib::SelectCalendarDateEnum(EXSCHEDULELib::exSelectToggle | EXSCHEDULELib::exSelectWeek)); spSchedule1->GetVisualAppearance()->Add(1,_bstr_t("gBFLBCJwBAEHhEJAEGg4BbkMQAAYAQGKIYBkAKBQAGaAoDDcOILQiMQzjTBMKgBBCLIxiGK4DhiF4aRSBMIwYAAYhyG4BIRGcYJEDMOQzR4MICSBKkMhlDiPY5mUAJE") + "iSJg3TDQlzpAoSGoeUhGTZnQaQASXJqKZ6kegoEh4MopTTHQLRUB8EyTDKnaapSJpEDINQlWTZciDKKFUQTNi3KxraKqbjqO47VJKEpSZBMXRhBIYZCueZZXgPBY5YhI" + "E64BSeASoACDZzoaAwTrOAwUZZFVg2DSOGSBRzQMKrCZKagnFYDVzleYxLjdR47Qy1Ih2GA7QqubYkUTmOjgBaoAYxQaaLx0OS5Rj4NAwZLFXI1eAGd6BDLhLz4XAOHx" + "HjmAZvGOWoeG8PhBiMGIMGOQxZCQOBpGUG4NncEIdB8MxLhSbpRnMIIIEkQJSGMOgdE4RhfAwJZtAwEIEleeQZA2EIQiECR2ludB8BgRYMAeKYDByB4DG5F4hBgTgWgU" + "YYIFIGoFmGOBlAmBJMmMQJwggYg4goJIJmIaImCWCpigiLgTgeYQYjYMoKiMOIyDSCIinQDggg2YxonYNYNGOEACDuD4jkifhFg4IQYkCW4RiQSQ2ECEhjiiRhHhOJQ4" + "jYQYQmSSRmFOFZlCkUhehMJZJC4VYYmWaYGFqF5ljkQhChcZh5jYKoZiYSY6D2HAmgmVhWhqJYJkYeoLieCYyHuHInEmSoAh8Zgplof4SA2OQqgKIZPAmBgciOYYaEIH" + "YkmQFAEIC"); spSchedule1->GetVisualAppearance()->Add(2,_bstr_t("gBFLBCJwBAEHhEJAEGg4BKMMQAAYAQGKIYBkAKBQAGaAoDDUNgwQwAAxDGKkEwsACEIrjKCRShyCYZRhGcTSBCIZBqEqSZLiEZRQiiCYsS5GQBSFDcOwHGyQYDkCQpE") + "hyKo+CTIA4SXJsdxpI4EIRCSL6MgNf5PABTb7zTSgYANF6WRZgWgpTjcMJHTpYFIwHRdQwHLqoagqKZJAqMABQGiYZyHKcwMYgBZXJBEbbMNBtBIUIRtaxZBBiFzgUZY" + "EBnEbDN4YbapMhyLI2OZBcCOJQ4SCoW4GJ49J7KXgYZiHOLcfjcLovLq5fiOQ5CV5ZXROM6sQyzIKWaCzLL5PjKHInWrPNa3DJtDyXJzUNY9GScG6HBLhWB0czzXIuO4" + "djqXg4jUOo9j8N4Zk6YoeA+bZKhcV49kyaAllODhPC8d5bi+WJ6H0fhvHcExIHgQB4nuHpOj4Y4zioeQfDePZRGcHI3lGIh9h4JwhkodQckecY9G+WpHDmUAdAeNwCBE" + "fRcGaIZ/G2D52gWfR0iGRhFg8Y5iBYTQBICA="); spSchedule1->GetVisualAppearance()->Add(3,_bstr_t("gBFLBCJwBAEHhEJAEGg4BgsHQAAYAQGKIYBkAKBQAGaAoDDUNgwQwAAxDGKkEwsACEIrjKCRShyCYZRhGcTSBCIZBqEqSZLiEZRQiiCYsS5GQBSFDcOwHGyQYDkCQpE") + "hyKo+CTIA4SXJsZxpI6EQQhEJIfo2Az/VAAFQPfLNKhgAyXZZFWBaCoaEgwUhVMhUVAdGR1BKvKjqKoZcomCRQGiYZyHKcwMYgBZRRBEbbMNBtBIULasWjQYhdYI7WDT" + "dR4XhmGDkPBtcbbPDcUpBBSLOAjSSOExzILhSrFVyXVzTXL5XDGMg7Wa5foFIDmPRtVbWNydLyvICOJK2eZOExrHrhWrPMZaRpnUyXJ6pcBvfA4Zi7QZlWjPOR2aoNCZ" + "bjuXpyjsPIahmYJ/keVR0HwPYsnIXQ4mSZ50jwXIfC+HxnmmcZ2HuCAOn+P43lSUZ1neXxeF4L4bmgeoeCcCZEHcXxIAGLBlBuBpphsdgfGaNB0B6WwXjoARrE+dxVkY" + "ageAgHgUD+XJWm2U4GliNhJhIQBAICA=="); spSchedule1->PutBodyEventBackColor(0x1000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleEventContinueNextWeek,0x2000000); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleEventContinuePrevWeek,0x3000000); spSchedule1->PutHeaderAllDayEventHeight(-20); spSchedule1->GetEvents()->Add(COleDateTime(2012,5,8,0,00,00).operator DATE(),COleDateTime(2012,5,17,0,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); spSchedule1->EndUpdate(); |
173 |
Can I make it zoom in using CTRL-MouseWheel instead of using the middle button
|
172 |
It is by default not possible, to simply scroll the component with the mouse wheel. How do I make it so
|
171 |
Can I get and set the width of the time bar
|
170 |
How do I select the current year
|
169 |
How do I select the current week day
|
168 |
How do I select the current week
|
167 |
How can I restore the layout of the panels, when user changes the width and the alignment of the panels
// LayoutEndChanging event - Notifies your application once the control's layout has been changed. void OnLayoutEndChangingSchedule1(long Operation) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"End Operation " ); OutputDebugStringW( L"Operation" ); OutputDebugStringW( L"Layout " ); OutputDebugStringW( _bstr_t(spSchedule1->GetOnResizeControl()) ); OutputDebugStringW( L"PaneWidth(False)" ); OutputDebugStringW( _bstr_t(spSchedule1->GetPaneWidth(VARIANT_FALSE)) ); } // LayoutStartChanging event - Occurs when the control's layout is about to be changed. void OnLayoutStartChangingSchedule1(long Operation) { EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"Start Operation " ); OutputDebugStringW( L"Operation" ); OutputDebugStringW( L"Layout " ); OutputDebugStringW( _bstr_t(spSchedule1->GetOnResizeControl()) ); OutputDebugStringW( L"PaneWidth(False)" ); OutputDebugStringW( _bstr_t(spSchedule1->GetPaneWidth(VARIANT_FALSE)) ); } // MouseMove event - Occurs when the user moves the mouse. void OnMouseMoveSchedule1(short Button,short Shift,long X,long Y) { EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"Layout " ); OutputDebugStringW( _bstr_t(spSchedule1->GetOnResizeControl()) ); OutputDebugStringW( L"PaneWidth(False)" ); OutputDebugStringW( _bstr_t(spSchedule1->GetPaneWidth(VARIANT_FALSE)) ); } |
166 |
Is it possibly to set the column width of the group/person using the api
|
165 |
When viewing the schedule by week or month and the month ends during the week (July 31, Tuesday -> August 1, Wednesday), the days continue down as a new week 'row'. When there is a change in month, is it possible to still show the full week without that break (compact)
|
164 |
I want to change the default event tooltip. How can I do that
|
163 |
How can I select the entire week for a specified date
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutNonworkingDays(0); var_Calendar->PutShowNonMonthDays(VARIANT_FALSE); var_Calendar->PutFirstWeekDay(EXSCHEDULELib::exSunday); var_Calendar->PutSelection(COleDateTime(2012,3,5,0,00,00).operator DATE()); var_Calendar->PutSelection("(int((yearday(value) -1- ((7-weekday(value - yearday(value) + 1)) mod 7) )/7) = int((yearday(#3/5/2012#)-1)/7))"); spSchedule1->PutBorderSelStyle(EXSCHEDULELib::exNoLines); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMarkTodayBackColor,RGB(240,240,240)); spSchedule1->EndUpdate(); |
162 |
I have noticed that I can drag bars from All-Day header to time-zone and reverse. Is it possible to prevent that
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->PutOnResizeControl(EXSCHEDULELib::exCalendarAutoHide); spSchedule1->PutShowAllDayHeader(VARIANT_TRUE); spSchedule1->PutAllowUpdateAllDayFlag(VARIANT_FALSE); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,5,23,0,00,00).operator DATE()); spSchedule1->GetCalendar()->PutSelection("value in (#5/23/2012#,#5/24/2012#,#5/25/2012#)"); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,5,24,10,00,00).operator DATE(),COleDateTime(2012,5,24,12,00,00).operator DATE())->PutExtraLabel(L"<sha>dentist"); var_Events->Add(COleDateTime(2012,5,24,0,00,00).operator DATE(),COleDateTime(2012,5,25,0,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); var_Events->Add(COleDateTime(2012,5,23,0,00,00).operator DATE(),COleDateTime(2012,5,24,0,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exNoLines); spSchedule1->PutShowSelectEvent(VARIANT_FALSE); spSchedule1->EndUpdate(); |
161 |
When an all-day event stretches over multiple days (ex. Monday thru Friday), is it possible to have that display as a continuous bar across those days instead of separate bars on each day
|
160 |
If I double click to a scheduled event and enter text, how can I read this newly entered text (i.e. what is its corresponding field)
|
159 |
Is it possible to show the date's header with a shadow
|
158 |
We need to highlight a day for example no booking/disabling for that day, is the timezone good choice (method 3)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); var_Calendar->PutSelection("value in (#6/26/2012#,#6/27/2012#,#6/28/2012#)"); spSchedule1->PutAllowMultiDaysEvent(VARIANT_FALSE); spSchedule1->GetNonworkingPatterns()->Add(1,EXSCHEDULELib::exPatternSolid)->GetPattern()->PutColor(RGB(240,240,240)); spSchedule1->GetNonworkingTimes()->Add(L"value in (#6/27/2012#)",L"00:00",L"24:00",1); spSchedule1->PutShowNonworkingTime(EXSCHEDULELib::exShowNonworkingTimeBack); spSchedule1->GetCalendar()->PutDisableZoneFormat(L"value in (#6/27/2012#)"); |
157 |
We need to highlight a day for example no booking for that day, is the timezone good choice (method 2)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); var_Calendar->PutSelection("value in (#6/26/2012#,#6/27/2012#,#6/28/2012#)"); spSchedule1->GetNonworkingPatterns()->Add(1,EXSCHEDULELib::exPatternSolid)->GetPattern()->PutColor(RGB(240,240,240)); spSchedule1->GetNonworkingTimes()->Add(L"value in (#6/27/2012#)",L"00:00",L"24:00",1); spSchedule1->PutShowNonworkingTime(EXSCHEDULELib::exShowNonworkingTimeBack); |
156 |
We need to highlight a day for example no booking for that day, is the timezone good choice (method 1)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); var_Calendar->PutSelection("value in (#6/26/2012#,#6/27/2012#,#6/28/2012#)"); EXSCHEDULELib::IMarkZonePtr var_MarkZone = spSchedule1->GetMarkZones()->Add(L"zone",COleDateTime(2012,6,27,0,00,00).operator DATE(),COleDateTime(2012,6,28,0,00,00).operator DATE()); var_MarkZone->PutBackColor(RGB(240,240,240)); var_MarkZone->GetPattern()->PutType(EXSCHEDULELib::exPatternEmpty); spSchedule1->PutShowMarkZone(EXSCHEDULELib::exShowMarkZonesBack); |
155 |
Is is possible to change the background color for a specific day
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); var_Calendar->PutSelection("value in (#6/26/2012#,#6/27/2012#,#6/28/2012#)"); EXSCHEDULELib::IMarkZonePtr var_MarkZone = spSchedule1->GetMarkZones()->Add(L"zone",COleDateTime(2012,6,27,0,00,00).operator DATE(),COleDateTime(2012,6,28,0,00,00).operator DATE()); var_MarkZone->PutBackColor(RGB(240,240,240)); var_MarkZone->GetPattern()->PutType(EXSCHEDULELib::exPatternEmpty); spSchedule1->PutShowMarkZone(EXSCHEDULELib::exShowMarkZonesBack); |
154 |
I want to know how can I call a user define form when editing a time slot
// LayoutEndChanging event - Notifies your application once the control's layout has been changed. void OnLayoutEndChangingSchedule1(long Operation) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"End exScheduleResize(5)" ); OutputDebugStringW( L"Operation" ); } // LayoutStartChanging event - Occurs when the control's layout is about to be changed. void OnLayoutStartChangingSchedule1(long Operation) { EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"Start exScheduleResize(5)" ); OutputDebugStringW( L"Operation" ); } EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSingleSel(VARIANT_TRUE); var_Calendar->PutOnSelectDate(EXSCHEDULELib::exEnsureVisibleDate); spSchedule1->PutClipToSel(VARIANT_TRUE); spSchedule1->PutAllowMoveSchedule(EXSCHEDULELib::exDisallow); spSchedule1->PutAllowMoveGroup(EXSCHEDULELib::exDisallow); spSchedule1->PutAllowResizeSchedule(EXSCHEDULELib::exLeftClick); spSchedule1->PutAllowCreateEvent(EXSCHEDULELib::exDisallow); |
153 |
Can we lock the scroll bars so that it only scrolls within the selected date
|
152 |
Is it possible to specify the dates to be printed to a single page
|
151 |
Is it possible to specify the dates to be printed
|
150 |
Does your control support Fit-To-Page, while printing
|
149 |
Does your control support Print and Print-Preview
|
148 |
How can I specify the height (time slot) of the day to be larger
|
147 |
How can I prevent resizing the schedule view, when a new date is selected
|
146 |
How do I get notified once the user moves an event
// UpdateEvent event - Notifies your application once the event changes the starting or ending margins. void OnUpdateEventSchedule1(LPDISPATCH Ev) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"UpdateEvent" ); OutputDebugStringW( L"Ev" ); } EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%><br><%=%5%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); EXSCHEDULELib::IEventPtr var_Event = var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE()); var_Event->PutEditable(EXSCHEDULELib::exEditCaption); var_Event->PutCaption(L"your caption"); EXSCHEDULELib::IEventPtr var_Event1 = var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); var_Event1->PutEditable(EXSCHEDULELib::exEditCaption); var_Event1->PutCaption(L"other caption"); |
145 |
Can You give me an example for the event handler when a user double clicks an appointment
|
144 |
Nothing is shown in the schedule view, if I use the Selection property. What am I doing wrong
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2001,6,1,0,00,00).operator DATE()); var_Calendar->PutSelection("value in (#6/11/2001#,#6/12/2001#,#6/13/2001#)"); |
143 |
Is it possible to lock a date/day, so no events can be created, moved, and so on
|
142 |
How can I show the grid lines for minor and major rules in the schedule view
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMajorTimeScaleStyle,RGB(0,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMajorTimeRulerColor,RGB(192,192,192)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleTimeScaleMajorRulerStyle,RGB(0,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleTimeScaleMajorRulerColor,RGB(192,192,192)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMinorTimeScaleStyle,RGB(3,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleTimeScaleMinorRulerStyle,RGB(3,0,0)); |
141 |
Is it possible to show the grid lines for minor rulers too in the schedule view
|
140 |
How can I change the style and colors to show the grid lines
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMajorTimeScaleStyle,RGB(48,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMajorTimeRulerColor,RGB(255,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleTimeScaleMajorRulerStyle,RGB(3,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleTimeScaleMajorRulerColor,RGB(255,0,0)); |
139 |
How can I show a solid line rather than dot lines in the schedule view
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMajorTimeScaleStyle,RGB(48,0,0)); spSchedule1->PutBackground(EXSCHEDULELib::exScheduleMajorTimeRulerColor,RGB(0,0,0)); |
138 |
Is it possible to hide or change the lines in the schedule view
|
137 |
Is there a possiblity to lock an event, so it can't be moved or edited
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); EXSCHEDULELib::IEventPtr var_Event = var_Events->Add(COleDateTime(2012,6,27,10,00,00).operator DATE(),COleDateTime(2012,6,27,11,30,00).operator DATE()); var_Event->GetBodyPattern()->PutType(EXSCHEDULELib::exPatternBDiagonal); var_Event->PutMovable(VARIANT_FALSE); var_Event->PutResizable(EXSCHEDULELib::exNoResizable); var_Event->PutSelectable(VARIANT_FALSE); var_Event->PutEditable(EXSCHEDULELib::exNoEditable); var_Event->PutExtraLabel(L"locked"); var_Events->Add(COleDateTime(2012,6,27,13,30,00).operator DATE(),COleDateTime(2012,6,27,15,30,00).operator DATE()); |
136 |
Is it possible to load a PNG file on the control's background ( /com only )
|
135 |
What is the Event.UserData property used for
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); spSchedule1->PutDefaultEventTooltip(_bstr_t("Start: <%=%1%><br>End: <%=%2%><br>Duration: <%=((1:=int(0:= (date(%2)-date(%1)))) != 0 ? (=:1 + ' day(s)') : '') + (=:1 ? ' ' :") + " '' ) + ((1:=int(0:=((=:0 - =:1 + 1/24/60/60/2)*24))) != 0 ? =:1 + ' hour(s)' : '' ) + (=:1 ? ' ' : '' ) + ((1:=round((=:0 - =:1" + ")*60)) != 0 ? =:1 + ' min(s)' : '')%><b><%=(len(%6) ? `<br>UserData: `+ %6 : ``)%></b>"); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,6,27,11,00,00).operator DATE(),COleDateTime(2012,6,27,12,30,00).operator DATE())->PutUserData("Any extra data associated with the event"); var_Events->Add(COleDateTime(2012,6,27,11,30,00).operator DATE(),COleDateTime(2012,6,27,13,30,00).operator DATE()); |
134 |
Is there also an event for when a user selects another month in the date-picker control
// LayoutEndChanging event - Notifies your application once the control's layout has been changed. void OnLayoutEndChangingSchedule1(long Operation) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"End exCalendarDateChange(3)" ); OutputDebugStringW( L"Operation" ); OutputDebugStringW( L"Currently browsing date:" ); OutputDebugStringW( _bstr_t(spSchedule1->GetCalendar()->GetDate()) ); } // LayoutStartChanging event - Occurs when the control's layout is about to be changed. void OnLayoutStartChangingSchedule1(long Operation) { EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"Start exCalendarDateChange(3)" ); OutputDebugStringW( L"Operation" ); OutputDebugStringW( L"Previously browsing date:" ); OutputDebugStringW( _bstr_t(spSchedule1->GetCalendar()->GetDate()) ); } |
133 |
How can I display the time-zone behind or back (method 2)
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,6,27,0,00,00).operator DATE()); EXSCHEDULELib::IMarkZonePtr var_MarkZone = spSchedule1->GetMarkZones()->Add(L"zone",COleDateTime(2012,6,27,10,30,00).operator DATE(),COleDateTime(2012,6,27,13,00,00).operator DATE()); var_MarkZone->PutLongLabel(L"zone"); EXSCHEDULELib::IPatternPtr var_Pattern = var_MarkZone->GetPattern(); var_Pattern->PutType(EXSCHEDULELib::exPatternBDiagonal); var_Pattern->PutColor(RGB(40,40,40)); spSchedule1->PutShowMarkZone(EXSCHEDULELib::exShowMarkZonesSemi); spSchedule1->GetEvents()->Add(COleDateTime(2012,6,27,11,00,00).operator DATE(),COleDateTime(2012,6,27,12,30,00).operator DATE()); |
132 |
How can I display the time-zone behind or back (method 1)
|
131 |
How can I add a time-zone
|
130 |
How can I specify a larger height for the timer, or it is possible to make it bigger
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,5,24,0,00,00).operator DATE()); EXSCHEDULELib::IAppearancePtr var_Appearance = spSchedule1->GetVisualAppearance(); var_Appearance->Add(1,_bstr_t("gBFLBCJwBAEHhEJAEGg4BC0MQAAYAQGKIYBkAKBQAGaAoDDUOQzQwAAxDGKUEwsACEIrjKCYVgOHYYQjGMZwHIUIhkGoSZKlCIRVDCKYJSzLcZAFIMRwSBiEQTmaa4W") + "iKIgIQiUBomGahajkMoYZCYKKSCI2S4aDZCIoTPLMagxC5GJCnSJnITJCpdV7XVgWHYVSzDM6yEScZTkFqubZsW5cNwXHZ9azkQpyFRPe6bbrqfJ/X5gN64HgBfrEUo8" + "cLxHCMKw3DKPYrkOLHS4CQjnSrLcqzDK8ax3GafZwcbqKWbmR5LUjTNR1DS9Hy3Kh8O4sSDbDqeZZpW7bNx2Xa9YQZcS5JBvfA8BwXC6JY7heR4ZIHTT9GbNc7zXQdHx" + "LiuUZrnUEwvFYIoDjeXZuHePA+A8Hx/kuYhQD2WQqg8T4vlWbJ3nuPg+l+H5BFEASAg=="); var_Appearance->Add(2,"CP:1 0 -3 0 3"); EXSCHEDULELib::IMarkTimePtr var_MarkTime = spSchedule1->GetMarkTimes()->Add(L"timer1",COleDateTime(2012,5,24,11,15,00).operator DATE()); var_MarkTime->PutBackColor(0x1000000); var_MarkTime->PutLine(EXSCHEDULELib::exNoLines); var_MarkTime->PutLabel(L"default height"); var_MarkTime->PutLabelAlign(EXSCHEDULELib::exBottomRight); EXSCHEDULELib::IMarkTimePtr var_MarkTime1 = spSchedule1->GetMarkTimes()->Add(L"timer2",COleDateTime(2012,5,24,13,15,00).operator DATE()); var_MarkTime1->PutBackColor(0x2000000); var_MarkTime1->PutLine(EXSCHEDULELib::exNoLines); var_MarkTime1->PutLabel(L"larger height"); var_MarkTime1->PutLabelAlign(EXSCHEDULELib::exBottomRight); spSchedule1->EndUpdate(); |
129 |
How I know what event was edited when it was edited by a user
|
128 |
What are timers in your exSchedule component
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->BeginUpdate(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,5,24,0,00,00).operator DATE()); EXSCHEDULELib::IMarkTimePtr var_MarkTime = spSchedule1->GetMarkTimes()->Add(L"timer1",COleDateTime(2012,5,24,8,35,00).operator DATE()); var_MarkTime->PutLabel(L"<fgcolor=808080>fixed timer"); var_MarkTime->PutLabelAlign(EXSCHEDULELib::exTopCenter); var_MarkTime->GetPattern()->PutType(EXSCHEDULELib::exPatternBDiagonal); var_MarkTime->GetPattern()->PutColor(RGB(224,224,224)); EXSCHEDULELib::IMarkTimePtr var_MarkTime1 = spSchedule1->GetMarkTimes()->Add(L"timer2",COleDateTime(2012,5,24,10,51,00).operator DATE()); var_MarkTime1->PutLabel(L"<fgcolor=00FF00>movable timer"); var_MarkTime1->PutMovable(VARIANT_TRUE); var_MarkTime1->PutBodyEventBackColor(RGB(128,255,128)); var_MarkTime1->PutLineColor(RGB(0,240,15)); var_MarkTime1->PutTimeScaleLineColor(RGB(0,255,0)); var_MarkTime1->PutTimeScaleLabel(L""); var_MarkTime1->PutLine(EXSCHEDULELib::LinesStyleEnum(EXSCHEDULELib::exLinesThicker | EXSCHEDULELib::exLinesDash)); var_MarkTime1->PutLabel(L"<bgcolor=FFFFFF><fgcolor=00FF00><b><%hh%>:<%nn%> <%AM/PM%><br><%loc_sdate%>"); var_MarkTime1->PutTimeScaleLine(EXSCHEDULELib::LinesStyleEnum(EXSCHEDULELib::exLinesThick | EXSCHEDULELib::exLinesDot4)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2012,5,24,9,00,00).operator DATE(),COleDateTime(2012,5,24,12,00,00).operator DATE()); var_Events->Add(COleDateTime(2012,5,24,10,45,00).operator DATE(),COleDateTime(2012,5,24,12,45,00).operator DATE()); var_Events->Add(COleDateTime(2012,5,24,11,30,00).operator DATE(),COleDateTime(2012,5,24,14,30,00).operator DATE()); var_Events->Add(COleDateTime(2012,5,24,12,45,00).operator DATE(),COleDateTime(2012,5,24,15,45,00).operator DATE()); spSchedule1->EndUpdate(); |
127 |
How do I get the selected dates in the calendar panel
// LayoutEndChanging event - Notifies your application once the control's layout has been changed. void OnLayoutEndChangingSchedule1(long Operation) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"Operation: exScheduleSelectionChange(10)" ); OutputDebugStringW( L"Operation" ); OutputDebugStringW( L"Selected Event Count:" ); OutputDebugStringW( _bstr_t(spSchedule1->GetSelCount()) ); OutputDebugStringW( L"First Selected Event:" ); OutputDebugStringW( _bstr_t(spSchedule1->GetSelEvent(0)) ); } EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2011,1,1,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2011,1,1,10,00,00).operator DATE(),COleDateTime(2011,1,1,11,30,00).operator DATE()); var_Events->Add(COleDateTime(2011,1,1,11,30,00).operator DATE(),COleDateTime(2011,1,1,13,30,00).operator DATE()); |
126 |
How do I get the selected dates in the calendar panel
// LayoutEndChanging event - Notifies your application once the control's layout has been changed. void OnLayoutEndChangingSchedule1(long Operation) { /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); OutputDebugStringW( L"Operation: exCalendarSelectionChange(1)" ); OutputDebugStringW( L"Operation" ); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); OutputDebugStringW( L"Selected Date Count:" ); OutputDebugStringW( _bstr_t(var_Calendar->GetSelCount()) ); OutputDebugStringW( L"First Selected Date:" ); OutputDebugStringW( _bstr_t(var_Calendar->GetSelDate(0)) ); } |
125 |
What is the easiest way to display a picture on my event
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2012,5,24,0,00,00).operator DATE()); spSchedule1->GetPictures()->Add(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spSchedule1->GetEvents()->Add(COleDateTime(2012,5,24,9,00,00).operator DATE(),COleDateTime(2012,5,24,14,00,00).operator DATE())->PutPictures(L"pic1"); |
124 |
How can I programmatically move a specified event
|
123 |
How can I edit the event but still display its margins
// AddEvent event - Notifies your application once the a new event is added. void OnAddEventSchedule1(LPDISPATCH Ev) { // Ev.Editable = 1 } /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%><br><%=%5%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); EXSCHEDULELib::IEventPtr var_Event = var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE()); var_Event->PutEditable(EXSCHEDULELib::exEditCaption); var_Event->PutCaption(L"your caption"); EXSCHEDULELib::IEventPtr var_Event1 = var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); var_Event1->PutEditable(EXSCHEDULELib::exEditCaption); var_Event1->PutCaption(L"other caption"); |
122 |
How can I edit the events
// AddEvent event - Notifies your application once the a new event is added. void OnAddEventSchedule1(LPDISPATCH Ev) { // Ev.Editable = 3 } /* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L""); spSchedule1->PutDefaultEventShortLabel(L""); spSchedule1->PutCreateEventLabel(L""); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); EXSCHEDULELib::IEventPtr var_Event = var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE()); var_Event->PutEditable(EXSCHEDULELib::exEditLongLabel); var_Event->PutLongLabel(L"just your label"); EXSCHEDULELib::IEventPtr var_Event1 = var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); var_Event1->PutEditable(EXSCHEDULELib::exEditLongLabel); var_Event1->PutLongLabel(L"just another label"); |
121 |
At the moment the scheduler only displays events from 8:00 am to 3:00 pm. How do I extend this time frame
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutDayStartTime(L"07:30"); spSchedule1->PutDayEndTime(L"14:30"); |
120 |
How does localization work
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutFirstWeekDay(var_Calendar->GetLocFirstWeekDay()); var_Calendar->PutMonthNames(var_Calendar->GetLocMonthNames()); var_Calendar->PutWeekDays(var_Calendar->GetLocWeekDays()); var_Calendar->PutAMPM(var_Calendar->GetLocAMPM()); |
119 |
Is it possible to limit the calendar to one month only
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutScrollBars(EXSCHEDULELib::exNoScroll); spSchedule1->PutAllowMoveSchedule(EXSCHEDULELib::exDisallow); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); var_Calendar->PutMinDate(COleDateTime(2001,1,1,0,00,00).operator DATE()); var_Calendar->PutMaxDate(COleDateTime(2001,1,31,0,00,00).operator DATE()); |
118 |
How can I display a distingue text for repetitive events
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%><br><%=%264? `repetitive event`:``%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE())->PutRepetitive(L"weekday(value) = 3"); var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); |
117 |
How can I display the event's duration on the body of the event
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(_bstr_t("<%=%256%><br><%=((1:=int(0:= (date(%2)-date(%1)))) != 0 ? (=:1 + ' day(s)') : '') + (=:1 ? ' ' : '' ) + ((1:=int(0:=((=:0 - =:1") + " + 1/24/60/60/2)*24))) != 0 ? =:1 + ' hour(s)' : '' ) + (=:1 ? ' ' : '' ) + ((1:=round((=:0 - =:1)*60)) != 0 ? =:1 + ' min(s)' :" + " '')%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE()); var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); |
116 |
The sample shows how the event's body can display automatically the UserData property of the event
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%><br><%=%6%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE())->PutUserData("UserData 1"); var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE())->PutUserData("UserData 2"); |
115 |
The sample shows how the event's body can display automatically the Caption property of the event
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%><br><%=%5%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE())->PutCaption(L"Event 1"); var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE())->PutCaption(L"Event 2"); |
114 |
The sample shows how the event's body can display automatically the group's ID, Caption and Title
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"Group's ID:<%=%4%><br>Group's Caption: <%=%262%><br>Group's Title: <%=%263%><br><%=%256%>"); spSchedule1->PutDefaultEventShortLabel(spSchedule1->GetDefaultEventLongLabel()); spSchedule1->GetCalendar()->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); spSchedule1->PutDisplayGroupingButton(VARIANT_TRUE); spSchedule1->PutShowGroupingEvents(VARIANT_TRUE); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); EXSCHEDULELib::IGroupsPtr var_Groups = spSchedule1->GetGroups(); EXSCHEDULELib::IGroupPtr var_Group = var_Groups->Add(1,L"Group 1"); var_Group->PutTitle(L"First"); var_Group->PutVisible(VARIANT_TRUE); EXSCHEDULELib::IGroupPtr var_Group1 = var_Groups->Add(2,L"Group 2"); var_Group1->PutTitle(L"Second"); var_Group1->PutVisible(VARIANT_TRUE); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,1,10,9,00,00).operator DATE(),COleDateTime(2001,1,10,12,30,00).operator DATE())->PutGroupID(1); var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE())->PutGroupID(2); |
113 |
The following sample displays automatically an "All-Day-Event: " prefix for AllDayEvent events
|
112 |
How can I use the calendar's LongTimeFormat
|
111 |
How can I use the calendar's ShortTimeFormat. The sample displays the times in 24-hours format
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%>"); spSchedule1->PutDefaultEventShortLabel(L"<%=%256%>"); spSchedule1->GetTimeScales()->GetItem(long(0))->PutMajorTimeLabel(L"<%hh%>:<%nn%>"); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); var_Calendar->PutShortTimeFormat(L"<%h%>:<%nn%>"); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); spSchedule1->GetEvents()->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); |
110 |
How can I use the calendar's ShortDateFormat
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%256%>"); spSchedule1->PutDefaultEventShortLabel(L"<%=%256%>"); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); var_Calendar->PutShortDateFormat(L"<%loc_d2%>, <%loc_m2%> <%d%>, <%yy%>"); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); spSchedule1->GetEvents()->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); |
109 |
How can I use the calendar's LongDateFormat
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutDefaultEventLongLabel(L"<%=%257%>"); spSchedule1->PutDefaultEventShortLabel(L"<%=%257%>"); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection(COleDateTime(2001,1,10,0,00,00).operator DATE()); var_Calendar->PutLongDateFormat(L"<%loc_dddd%>, <%loc_mmm%> <%d%>, <%yyyy%>"); spSchedule1->PutOnResizeControl(EXSCHEDULELib::OnResizeControlEnum(EXSCHEDULELib::exCalendarAutoHide | EXSCHEDULELib::exCalendarFit | EXSCHEDULELib::exResizePanelRight)); spSchedule1->GetEvents()->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE())->PutAllDayEvent(VARIANT_TRUE); |
108 |
Is it possible to prevent updating events
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); spSchedule1->PutSelectEventStyle(EXSCHEDULELib::exLinesSolid); spSchedule1->PutAllowUpdateDisableZone(VARIANT_FALSE); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutShowNonMonthDays(VARIANT_FALSE); var_Calendar->PutSelection(COleDateTime(2001,1,9,0,00,00).operator DATE()); var_Calendar->PutDisableZoneFormat(L"value >= #1/11/2001#"); var_Calendar->PutMinDate(COleDateTime(2001,1,1,0,00,00).operator DATE()); EXSCHEDULELib::IEventsPtr var_Events = spSchedule1->GetEvents(); var_Events->Add(COleDateTime(2001,1,10,10,00,00).operator DATE(),COleDateTime(2001,1,10,13,00,00).operator DATE()); var_Events->Add(COleDateTime(2001,1,11,10,00,00).operator DATE(),COleDateTime(2001,1,11,13,00,00).operator DATE()); |
107 |
How can I specify that after editing the caption should be on top ( method 2 )
|
106 |
How can I specify that after editing the caption should be on top ( method 1 )
|
105 |
How can I get ride or hide the of the calendar's grid lines
|
104 |
How can I programmatically select a single date ( method 2 )
|
103 |
How can I programmatically select a single date ( method 1 )
/* Copy and paste the following directives to your header file as it defines the namespace 'EXSCHEDULELib' for the library: 'ExSchedule 1.0 Control Library' #import <ExSchedule.dll> using namespace EXSCHEDULELib; */ EXSCHEDULELib::ISchedulePtr spSchedule1 = GetDlgItem(IDC_SCHEDULE1)->GetControlUnknown(); EXSCHEDULELib::ICalendarPtr var_Calendar = spSchedule1->GetCalendar(); var_Calendar->PutSelection("0"); var_Calendar->PutSelectDate(COleDateTime(2012,1,1,0,00,00).operator DATE(),VARIANT_TRUE); |
102 |
How can I prevent showing the Today button, in the calendar panel
|
101 |
How can I display just the calendar panel, not including the schedule panel
|